home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / DJGPP / LGP250S1.ZIP / src / libgplus.5 / libgplus / utils / makefile.in < prev   
Makefile  |  1993-05-12  |  1KB  |  38 lines

  1. # Makefile for libg++.a
  2.  
  3. # Copyright (C) 1988, 1992, 1993 Free Software Foundation
  4. #   written by Doug Lea (dl@rocky.oswego.edu)
  5.  
  6. # This file is part of GNU CC.
  7.  
  8. # GNU CC is distributed in the hope that it will be useful,
  9. # but WITHOUT ANY WARRANTY.  No author or distributor
  10. # accepts responsibility to anyone for the consequences of using it
  11. # or for whether it serves any particular purpose or works at all,
  12. # unless he says so in writing.  Refer to the GNU CC General Public
  13. # License for full details.
  14.  
  15. # Everyone is granted permission to copy, modify and redistribute
  16. # GNU CC, but only under the conditions described in the
  17. # GNU CC General Public License.   A copy of this license is
  18. # supposed to have been given to you along with GNU CC so you
  19. # can know your rights and responsibilities.  It should be in a
  20. # file named COPYING.  Among other things, the copyright notice
  21. # and this notice must be preserved on all copies.
  22.  
  23. srcdir = .
  24.  
  25. #### package, host, target, and site dependent Makefile fragments come in here.
  26. ##
  27.  
  28.  
  29. etags.o: $(srcdir)/etags.c
  30.     $(CC) -c -DETAGS $(CFLAGS) -I$(srcdir)/../../include $(srcdir)/etags.c
  31.  
  32. etags: etags.o
  33.     $(CC) $(CFLAGS) etags.o ../../libiberty/libiberty.a -o $@
  34.  
  35. g++dep: g++dep.sh
  36.     cp $(srcdir)/g++dep.sh $@
  37.     chmod +x $@
  38.